All Questions
3 questions
2votes
0answers
165views
Merging DataFrames using RDotNet
I am using REngine and the RDotnet package in c#. I have List, each DataFrame contains unknown set of columns names, I need to merge all of these dataframes to 1 which has the union columns set of all ...
0votes
1answer
487views
CreateDataFrame in R.Net
I'm trying to implement my R script on vb.NET using Rdotnet. First, I call SQL stored procedure from my database to perform some pre-processing of the data. This gives me a DataTable object in vb.NET. ...
1vote
1answer
473views
Passing decimal values from dataTable to dataFrame fails
I have created this code sample to pass an object of type c# DataTable to R.Net dataFrame. public static DataFrame ConvertDataTableToRDataFrame(DataTable tab) { REngine.SetEnvironmentVariables();...